home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Programming / BlitzList / BlitzListFiles / NewLibrarySet120.lha / NewLibrarySet_V1.20 / Install < prev    next >
Encoding:
Text File  |  1998-07-19  |  1.5 KB  |  101 lines

  1. ;*
  2. ;* Install Script For NewScreenLib V1.00
  3. ;*  
  4. ;* Done By -> AlphaSOUND <-
  5. ;*
  6.  
  7. (complete 0)
  8.  
  9. ;*** Directory Select ***
  10.  
  11. (complete 10)
  12.  
  13. (set DestDir
  14.   (askdir
  15.     (prompt "Where is localized your BlitzLibs drawer ?")
  16.     (help "")
  17.     (default "BlitzLibs:")
  18.   )
  19. )
  20.  
  21. (set DestDir (expandpath DestDir))
  22. (set NDir (tackon DestDir "NLibs"))
  23.  
  24.  
  25. (set ExampleDir
  26.   (askdir
  27.     (prompt "Where do you want to install the examples files ?")
  28.     (help "")
  29.     (default "Blitz2:")
  30.   )
  31. )
  32.  
  33. (set ExampleDir (expandpath ExampleDir))
  34.  
  35. (makedir NDir)
  36.  
  37. (complete 50)
  38.  
  39. (copyfiles
  40.   (source "Resident")
  41.   (dest DestDir)
  42.   (pattern "NLibs.res")
  43. )
  44.  
  45. (complete 70)
  46.  
  47. (copyfiles
  48.   (source "NLibs")
  49.   (dest NDir)
  50.   (pattern "#?.obj")
  51. )
  52.  
  53.  
  54. (complete 90)
  55.  
  56. (copyfiles
  57.   (source "Examples")
  58.   (dest ExampleDir)
  59.   (pattern "#?.bb2#?")
  60. )
  61.  
  62.  
  63. (complete 100)
  64.  
  65. (set RunMake (askbool (prompt
  66.  
  67.               "\nThank you to let give a try to this new library set.\n\n"
  68.  
  69.               "The installation is complete and you must now launch the MAKEDEFLIBS program "
  70.               "which is located in your BlitzLibs: drawer.\n\n"
  71.  
  72.               "I can do it for you. Click on 'Run It' to run the MAKEDEFLIBS program or on"
  73.               "'Skip' to skip this part.\n\n"
  74.  
  75.               "Have fun with theses libraries !\n\n"
  76.  
  77.               "Fred -> AlphaSOUND <-")
  78.  
  79.               (help "")
  80.               (choices "Run it !"
  81.                        "Skip it !"
  82.               )
  83.              )
  84. )
  85.  
  86.  
  87. (if (= 1 RunMake)
  88. (
  89.     (working "Makedeflibs is being to update your deflibs...")
  90.     (run ("BlitzLibs:MakeDefLibs"))
  91. ))
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.